How many games will a college football team win in the upcoming season? How likely are they to win their conference championship?
This notebook displays 2022 predictions (as of Week 7) and historical data for Coastal Carolina.
Note: a team’s predicted win/loss total is the average number of wins they achieve across all simulations of games in the regular season.
Using each team’s rating, I simulate the result and margin of victory for each remaining game of the 2022 season 1000 times.
The following table shows the percentage of times in which Coastal Carolina won each of the games on their upcoming schedule. The margin of victory is the median margin of victory across all simulations.
| Season | Week | Date | Team | Opponent | Pr(Win) | Prediction | Result | Correct? | |
|---|---|---|---|---|---|---|---|---|---|
| 2022 | 1 | Sep 03 | vs | 0.696 | win by 9 | won by 10 | ✓ | ||
| 2022 | 2 | Sep 10 | vs | 0.955 | win by 28 | won by 4 | ✓ | ||
| 2022 | 3 | Sep 17 | vs | 0.915 | win by 24 | won by 12 | ✓ | ||
| 2022 | 4 | Sep 22 | @ | 0.741 | win by 11 | won by 17 | ✓ | ||
| 2022 | 5 | Oct 01 | vs | 0.844 | win by 16 | won by 4 | ✓ | ||
| 2022 | 6 | Oct 09 | @ | 0.835 | win by 18 | won by 7 | ✓ | ||
| 2022 | 7 | Oct 15 | vs | 0.906 | win by 22 | lost by 28 | ✕ | ||
| 2022 | 9 | Oct 29 | @ | 0.540 | win by 2 | ||||
| 2022 | 10 | Nov 03 | vs | 0.667 | win by 8 | ||||
| 2022 | 11 | Nov 12 | vs | 0.842 | win by 16 | ||||
| 2022 | 12 | Nov 19 | @ | 0.624 | win by 6 | ||||
| 2022 | 13 | Nov 26 | @ | 0.536 | win by 2 |
It’s important to note that within each simulation the results of each game are not independent. The (simulated) results of each week are used to update each team’s rating going into the next week, which will then influence how likely they are to win games in the rest of the season. This means that in some simulations a team will overperform/underperform early and end up with a very good/poor season. A team’s predicted win total is the average number of wins they achieve across all simulations.
The visualization below shows how Coastal Carolina’s predicted win total has changed after each week of the regular season so far.
How has Coastal Carolina’s chance’s of winning a conference championship and making/winning the playoffs changed over the course of the season?
The visualization below shows the simulated paths for Coastal Carolina as of Week 7 in the 2022 season. This illustrates the most common paths left in a team’s season by showing how the result of one game tends to affect its future trajectory.
## Rating vs Preseason Expectations
How is Coastal Carolina performing compared to preseason expectations? The visualization below shows the team’s rating so far compared to simulated ratings for the team from the start of the season. The simulated paths from the beginning of the season are shown in grey while the team’s actual rating so far is shown in the team’s color. Teams that are outperforming preseason expectations will be above the majority of the simulated paths; teams that are under performing will be below.
The simulations for an upcoming season make use of an (adjusted) Elo rating, which is a rating assigned to each team based on wins and losses in previous games. After wins, a team’s rating will go up; after losses, a team’s rating will go down. The magnitude of these increases/decreases will vary depend on the scoreline and strength of the opponent.
The following visualizations shows Coastal Carolina’s Elo rating from 1900 to 2022
In addition to a team’s historical Elo rating, I also compute and use each team’s offensive/defensive efficiency metrics from recent seasons to predict their expected future Elo rating. These efficiency metrics come from an expected points model I trained on on play by play data in order to identify the value of individual plays within a game.
I score every play with the model and then aggregate these results to the game and season level and adjust for opponent quality. These results are only available starting from the season of 2007, as this is when reliable play by play data becomes available.
For more details on what goes into creating these ratings, go to my description of the expected points model and my methodology for adjusting for opponent quality.
SEASON | TEAM | OFFENSE | DEFENSE | OVERALL |
2017 | Coastal Carolina | -0.076 | -0.116 | -0.192 |
2018 | Coastal Carolina | -0.043 | -0.190 | -0.232 |
2019 | Coastal Carolina | -0.107 | -0.078 | -0.185 |
2020 | Coastal Carolina | 0.178 | 0.061 | 0.240 |
2021 | Coastal Carolina | 0.050 | -0.031 | 0.019 |
These efficiency ratings indicate a team’s expected points per play when its offense or defense is on the field, adjusted for opponent quality. A team’s overall rating is a combination of its offense and defense ratings, and indicates the net points per play a team would expect when playing an average opponent.
For offenses, this indicates the average points the team scores against opponents per play. For defenses, this indicates the average points the team prevents opposing offenses from scoring per play. In both cases, I have set the scale of the variable to mean that positive is good while negative is bad.
The visualization below shows how a team has changed over time as well as their season end efficiency ranking (out of all FBS teams).
In addition to examinig how a team performs overall, we can examine each team’s efficiency based on the play type. How has Coastal Carolina performed when running/passing on offense vs defending the run/pass on defense?
Season | Team | Pass_Offense | Run_Offense | Pass_Defense | Run_Defense |
2017 | Coastal Carolina | -0.071 | -0.027 | -0.288 | -0.090 |
2018 | Coastal Carolina | -0.113 | 0.085 | -0.275 | -0.270 |
2019 | Coastal Carolina | -0.122 | -0.051 | -0.241 | -0.057 |
2020 | Coastal Carolina | 0.399 | 0.106 | 0.139 | -0.081 |
2021 | Coastal Carolina | 0.323 | 0.081 | -0.159 | -0.054 |
The following visualization shows how efficient Coastal Carolina’s offense has been running/passing the ball each season since 2007.
The following visualization shows how efficient Coastal Carolina’s defense has been in stopping the opponent’s run/pass in each season since 2007.